Deleting a Tracker
When a tracker is no longer needed, you can delete it to free resources on the platform. This will delete the tracker and all tracks stored within the Inference Store.
Using the SDK:
from chariot import tracker as tracking_service
tracking_service.delete_tracker(unitless_point_tracker.tracker_id)
This call will remove the tracker. After this, if you try to update or get this tracker by ID, you will receive an error since it no longer exists. If you need to track another stream or restart tracking, you would create a fresh tracker.